Exception while accessing database

Exception while accessing database

am 02.06.2010 20:23:57 von Manohar Bhattarai

--0016e68ded48a3763d048810324e
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

Hi,
This problem was initially asked to pgsql-jdbc@postgresql.org and I was
suggested to ask this problem here.
So my initial problem was that i was not able to set the Driver for
postgresql. I solved that problem with the help there.

But I have a new exception and it is :
org.postgresql.util.PSQLException: FATAL: password authentication failed fo=
r
user "postgres"

I am giving the line for connection that i am using :
connection =3D DriverManager.getConnection(connectionURL, "postgres",
"mypasswordhere");

But the password is the same that i use to login postgres user in the
terminal.
What could be the problem?


I am using (Linux)Ubuntu 8.04 as OS, Postgresql is 8.3, java is jdk1.6,
using Eclipse as IDE, and trying to make a project in jsp.

My problem is that I had installed postgresql8.3 successfully. and after
some search on the google gave me some configuration details which i
followed. But I am not able to understand how to start creating a new user
and a new database after a fresh installation of postgres.

Can you provide me with come details to how to create a new user and new
database after a new installation of postgres?

If you need any more details i will provide them. Please help me solve this
problem.
--=20
Regards,
Manohar Bhattarai (मनोहर à¤=AD=
ट्टराई)
Blogs:
http://manoharbhattarai.wordpress.com/
http://manoharbhattarai.posterous.com/
http://manoharbhattarai.blogspot.com/
Microblogs:
Twitter :- http://twitter.com/manoharmailme
Identi.ca :- http://identi.ca/manoharbhattarai

--0016e68ded48a3763d048810324e
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

Hi,
This problem was initially asked to dbc@postgresql.org">pgsql-jdbc@postgresql.org and I was suggested to as=
k this problem here.
So my initial problem was that i was not able to s=
et the Driver for postgresql. I solved that problem with the help there. iv>


ze:13px;border-collapse:collapse">But I have a new exception and it is : v>or=
g.postgresql.util.PSQLException: FATAL: password authentication failed for =
user "postgres"




I am giving the line for connection that i am using : div>
connection =3D DriverManager.getConnection(connectionURL, "po=
stgres", "mypasswordhere");

But the=
password is the same that i use to login postgres user in the terminal. iv>


What could be the problem?


I a=
m using (Linux)Ubuntu 8.04 as OS, Postgresql is 8.3, java is jdk1.6, using =
Eclipse as IDE, and trying to make a project in jsp.



My problem is that I had installed postgresql8.3 successfully. and aft=
er some search on the google gave me some configuration details which i fol=
lowed. But I am not able to understand how to start creating a new user and=
a new database after a fresh installation of postgres.



 Can you provide me with come details to how to cr=
eate a new user and new database after a new installation of postgres? >

If you need any more details i will provide the=
m. Please help me solve this problem.


--
Regards,
Manohar Bhattarai (मनोह=
र भट्टराठ=88)<=
br>Blogs:
_blank">http://manoharbhattarai.wordpress.com/
oharbhattarai.posterous.com/" target=3D"_blank">http://manoharbhattarai.pos=
terous.com/




http://=
manoharbhattarai.blogspot.com/

Microblogs:
Twitter :- http://twitter.com/manoharmailme" target=3D"_blank">http://twitter.com/mano=
harmailme



Identi.ca :- ">http://identi.ca/manoharbhattarai




--0016e68ded48a3763d048810324e--

Re: Exception while accessing database

am 02.06.2010 22:44:30 von Kevin Grittner

Manohar Bhattarai wrote:

> FATAL: password authentication failed for user "postgres"

> But the password is the same that i use to login postgres user in
> the terminal.
> What could be the problem?

When you say "postgres user in the terminal", do you mean logging in
to the operating system? If so, that has nothing to do with the
database login unless you choose to make it so by having an "ident"
entry in the pg_hba.conf file.

http://www.postgresql.org/docs/8.3/interactive/client-authen tication.html

> I am not able to understand how to start creating a new user
> and a new database after a fresh installation of postgres.

Once you get logged in with the postgres user, that would be the
CREATE DATABASE and CREATE USER statements:

http://www.postgresql.org/docs/8.3/interactive/sql-createdat abase.html

http://www.postgresql.org/docs/8.3/interactive/sql-createuse r.html

-Kevin

--
Sent via pgsql-admin mailing list (pgsql-admin@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-admin

Re: Exception while accessing database

am 05.06.2010 13:34:07 von Manohar Bhattarai

--001636c5c0137932e6048846d25c
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

On Thu, Jun 3, 2010 at 2:14 AM, Kevin Grittner
wrote:

> Manohar Bhattarai wrote:
>
> > FATAL: password authentication failed for user "postgres"
>
> > But the password is the same that i use to login postgres user in
> > the terminal.
> > What could be the problem?
>
> When you say "postgres user in the terminal", do you mean logging in
> to the operating system? If so, that has nothing to do with the
> database login unless you choose to make it so by having an "ident"
> entry in the pg_hba.conf file.
>
> http://www.postgresql.org/docs/8.3/interactive/client-authen tication.html
>
> > I am not able to understand how to start creating a new user
> > and a new database after a fresh installation of postgres.
>
> Once you get logged in with the postgres user, that would be the
> CREATE DATABASE and CREATE USER statements:
>
> http://www.postgresql.org/docs/8.3/interactive/sql-createdat abase.html
>
> http://www.postgresql.org/docs/8.3/interactive/sql-createuse r.html
>
> -Kevin
>


Thank you. The problem is solved. :) Thanks for your help.
--=20
Regards,
Manohar Bhattarai (मनोहर à¤=AD=
ट्टराई)
Blogs:
http://manoharbhattarai.wordpress.com/
http://manoharbhattarai.posterous.com/
http://manoharbhattarai.blogspot.com/
Microblogs:
Twitter :- http://twitter.com/manoharmailme
Identi.ca :- http://identi.ca/manoharbhattarai

--001636c5c0137932e6048846d25c
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: quoted-printable



On Thu, Jun 3, 2010 at 2:14 AM, Kevin Gr=
ittner < >Kevin.Grittner@wicourts.gov> wrote:
gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-=
left:1ex;">

Manohar Bhattarai < gmail.com">manoharbhattarai@gmail.com> wrote:



> FATAL: password authentication failed for user "postgres" >


> But the password is the same that i use to log=
in postgres user in

> the terminal.

> What could be the problem?



When you say "postgres user in the terminal", do you mean l=
ogging in

to the operating system?  If so, that has nothing to do with the

database login unless you choose to make it so by having an "ident&quo=
t;

entry in the pg_hba.conf file.



tion.html" target=3D"_blank">http://www.postgresql.org/docs/8.3/interac tive=
/client-authentication.html




> I am not able to understand how to start creating a new user

> and a new database after a fresh installation of postgres.



Once you get logged in with the postgres user, that would be the

CREATE DATABASE and CREATE USER statements:



e.html" target=3D"_blank">http://www.postgresql.org/docs/8.3/interac tive/sq=
l-createdatabase.html




ml" target=3D"_blank">http://www.postgresql.org/docs/8.3/interac tive/sql-cr=
eateuser.html




-Kevin



Thank you. The problem is s=
olved. :) Thanks for your help.
--
Regards,
Manohar Bhattarai (=
मनोहर भटà¥=8D=
टराई)
Blogs:
arbhattarai.wordpress.com/">http://manoharbhattarai.wordpres s.com/


http://manoharbhattarai.=
posterous.com/

htt=
p://manoharbhattarai.blogspot.com/

Microblogs:
Twitter :- =3D"http://twitter.com/manoharmailme">http://twitter.com/man oharmailme<=
br>

Identi.ca :- http://identi.ca=
/manoharbhattarai



--001636c5c0137932e6048846d25c--